home *** CD-ROM | disk | FTP | other *** search
/ Aminet 43 / Aminet 43 (2001)(GTI - Schatztruhe)[!][Jun 2001].iso / Aminet / game / think / Connect4.lha / Connect4 / source / computer_player.h < prev    next >
C/C++ Source or Header  |  2001-03-18  |  171b  |  9 lines

  1. #ifndef COMPUTER_PLAYER_H
  2. #define COMPUTER_PLAYER_H
  3.  
  4. #include <exec/types.h>
  5. int computer_player (int skill_level, char **filled, char *columntop, BOOL newgame);
  6.  
  7. #endif
  8.  
  9.